Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency Quartz.Extensions.Hosting to 3.13.0 - autoclosed #45

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 4, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Quartz.Extensions.Hosting (source) 3.9.0 -> 3.13.0 age adoption passing confidence

Release Notes

quartznet/quartznet (Quartz.Extensions.Hosting)

v3.13.0: Quartz.NET 3.13.0

This release aims to modernize targeted platforms and used dependencies.

The System.Configuration.ConfigurationManager reference has been removed from non-framework builds. This means using App.config's <quartz> section as Quartz configuration source is only supported on .NET Framework builds. This change was made to reduce legacy dependencies and to make Quartz more compatible with modern .NET.

In order to properly resolve configuration settings for connection strings on modern .NET you should use the Microsoft DI integration package which will modify resolution process to include standard configuration sources.

The netcoreapp3.1 target has been removed from DI and hosting integration packages which makes NET 6 the lowest supported modern runtime version for those packages.

What's Changed

Full Changelog: quartznet/quartznet@v3.12.0...v3.13.0

v3.12.0: Quartz.NET 3.12.0

This release aims to alleviate some problems that have been present then Quartz's own global singletons clash
with DI containers singleton concept when DI container is being torn down during testing. Now both scheduler repository
and DB connection manager are scoped inside DI container and share container's lifetime.

If you want to have multiple service collections sharing same global state, you should manually register IDbConnectionManager
and ISchedulerRepository to DI as singletons pointing to global object instances.

// add globals before AddQuartz to get old behavior
services.AddSingleton<IDbConnectionManager>(DBConnectionManager.Instance);
services.AddSingleton<ISchedulerRepository>(SchedulerRepository.Instance);

services.AddQuartz(...)

What's Changed

Full Changelog: quartznet/quartznet@v3.11.0...v3.12.0

v3.11.0: Quartz.NET 3.11.0

What's Changed

New Contributors

Full Changelog: quartznet/quartznet@v3.10.0...v3.11.0

v3.10.0: Quartz.NET 3.10.0

This release adds support for using System.Text.Json as serializer for JSON payloads stored in database via new integration package Quartz.Serialization.SystemTextJson. Please note that there might be small incompatibilities between Newtonsoft and STJ (de)serialization. If you are using only strings as data values, there should be no compatibility issues. Using the new integration package is ideal for new greenfield projects.

What's Changed

New Contributors

Full Changelog: quartznet/quartznet@v3.9.0...v3.10.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from eab7dfc to ae3e3d2 Compare October 11, 2024 23:00
@renovate renovate bot force-pushed the renovate/quartznet-monorepo branch from ae3e3d2 to 36a79db Compare October 11, 2024 23:01
@renovate renovate bot changed the title Update dependency Quartz.Extensions.Hosting to 3.13.0 Update dependency Quartz.Extensions.Hosting to 3.13.0 - autoclosed Oct 20, 2024
@renovate renovate bot closed this Oct 20, 2024
@renovate renovate bot deleted the renovate/quartznet-monorepo branch October 20, 2024 22:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants